home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of Shareware
/
Best of PC Windows Shareware 1.0 - Wayzata Technology (7111) (1993).iso
/
mac
/
ZIPPED
/
DOS
/
GRAPHICS
/
POVSRC.ZIP
/
MACHINE.ZIP
/
MAC.SIT
/
DoPOVPerf
< prev
next >
Wrap
Text File
|
1992-04-27
|
1KB
|
37 lines
#
# ==============================================================================
# Project: POV
#
# File: DoPOVPerf (MPW Command Script)
#
# Contents:
# After running your app.. run this script to create the performance report
#
# Related Files:
# ------------------------------------------------------------------------------
# Written by:
# Eduard [esp] Schwan
# ------------------------------------------------------------------------------
# Change History:
#
# 900814 [esp] Created.
# 910730 [esp] Added ECHO feedback & environment vars for pseudo-clarity
# 920402 [esp] Genericized for POV-Ray
# ==============================================================================
#
Set AppName POV
Set ROMMapFile "{MPW}ROM Maps:MacIIROM.map"
Set LinkMapFile "{AppName}.map"
Set TempMapFile "{AppName}andROMPerf.map"
Set PerfOutFile "{AppName}Perf.out"
Set PerfRptOutFile "{AppName}PerfReport.out"
Echo "Creating {PerfOutFile} file from {LinkMapFile}"
Catenate "{LinkMapFile}" "{ROMMapFile}" > "{TempMapFile}"
Echo "Generating Report {PerfOutFile}"
PerformReport -l "{TempMapFile}" -m "{PerfOutFile}" > "{PerfRptOutFile}"
Delete "{TempMapFile}"
Open "{PerfRptOutFile}"